home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Misc / Crossword / Source / LeapfrogState.h < prev    next >
Text File  |  1992-10-11  |  359b  |  19 lines

  1. /*
  2.  
  3. File LeapfrogState.h
  4.  
  5. This is the state used for leapfrog search.  When backjumping past a square, the square remembers its current value and tries that value first the next time through.
  6.  
  7. */
  8.  
  9. #import "BackjumpState.h"
  10.  
  11.  
  12. /* ————————————————————————————————————————————————————————————————————————————  */
  13.  
  14.  
  15. @interface LeapfrogState:BackjumpState
  16. {
  17. }
  18.  
  19. @end